* {  
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lora';
  }
  
  /*-----NAV BAR-----*/
  
  .header-container {
    background-color: #19212E;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 999;
    }
    
    nav {
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    }
    
    nav img {
    height: 80px;
    }
    
    .nav-links {
    display: flex;
    list-style: none;
    justify-content: center; 
    align-items: center; 
    flex-grow: 1;
    padding-right: 150px;
    }
    
    .nav-links li {
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    }
    
    .nav-links li a {
    color: white;
    font-size: 20px;
    padding: 10px;
    text-decoration: none;
    }
    
    
    .nav-links li a:hover {
     color: red;
     transition: color 0.5s ease;
    }
    
    .nav-links li:hover {
      transform: scale(1.15);
      transition: transform 0.2s ease ;
    }
    
    .burger {
    display: none;
    cursor: pointer;
    }
    
    .burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
    }
    
    @media screen and (max-width: 1200px) {
    .nav-links {
    padding-right: 70px;
    }
    
    .nav-links li {
      padding: 5px;
    }
    
    .nav-links li a{
      font-size: 17px;
    }
    }
    
    @media screen and (max-width: 800px) {
      .nav-links {
        display: none; 
        flex-direction: column;
        position: absolute;
        border-radius: 10px;
        border: solid 3px black;
        top: 90px;
        margin-left: 45%;
        justify-content: center;
        background-color: #11151C;
        width: 50%;
        padding-right: 0px;
      }
    
      nav img {
        height: 50px;
      }
    
      .nav-links li {
        margin: 0.5rem 0;
      }
    
      .burger {
        display: block;
      }
    
      body.menu-active .nav-links {
        display: flex;
      }
    
      body.menu-active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
      }
    
      body.menu-active .line2 {
        opacity: 0;
      }
    
      body.menu-active .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
      }
    }    
  
  /*-----IMAGE SECTION-----*/
  
  .background-section {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    height: 500px;
    background-image: url("/images/background/ourStory.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  
  .image-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0px 0px 10px black;
    max-width: 100%;
    width: auto; 
    padding: 10px 40px 10px;
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
  }
  
  .image-text h2 {
    font-size: 3.8rem;
  }

  @media screen and (max-width: 1800px) {
    .background-section{
      height: 450px;
    }
  }

  @media screen and (max-width: 1700px) {
    .background-section{
      height: 350px;
    }
  }

  @media screen and (max-width: 1600px) {
    .background-section{
      height: 300px;
    }
  }

  @media screen and (max-width: 1200px) {
    .background-section{
      background-size: cover;
      height: 400px;
      background-attachment: scroll;
    }

    .image-text h2 {
      font-size: 3rem;
    }
  }

  @media screen and (max-width: 800px) {
    .background-section{
      background-size: cover;
      height: 300px;
    }
  }

  @media screen and (max-width: 520px) {
    .background-section{
      background-size: cover;
      height: 200px;
    }

    .image-text h2 {
      font-size: 2.2rem;
    }
  }
  
  /*-----MAIN CONTENT-----*/

  main {
    background-color: #364156;
    color: white;
  }

  .content-box {
    display: flex;
    flex-direction: row;
    margin: 0px 60px 0px;
    padding: 10px 50px 10px;
    height: auto;
    background-color: #212D40;
  }

  .content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-top: 10px;
  }

  .content-image{
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
  }

  .content-image img{
    width: 60%;
  }

  .content-button{
    padding-top: 20px;
    text-align: center;
  }

  .content-box p {
    padding: 10px 50px 10px;
  }
  
  .content-box h2 {
    text-align: center;
    font-size: 45px;
    padding-bottom: 20px;
    color: white;
    font-style: italic;
  }

  #top-box{
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  #bottom-box{
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  @media screen and (max-width: 1200px) {
    .content-box h2{
      font-size: 35px;
    }

    .content-box p {
      padding: 10px 30px 10px;
    }
  }


  @media screen and (max-width: 1000px) {
    .content-box {
      flex-direction: column;
    }
  }

  @media screen and (max-width: 800px) {
    .content-box,
    .header-box{
      margin: 0px 25px 0px;
    }

    .header-box h2,
    .content-box h2{
      font-size: 30px;
    }

    .content-box p,
    .header-box p {
      padding: 10px 50px 10px;
    }
  }

  @media screen and (max-width: 520px) {
    .header-box p {
      padding: 10px 25px 10px;
    }
    .content-box p{
      padding: 10px 0px 10px;
    }
  }

/*-----BUTTON-----*/

  .go-button {
    width: auto;
    display: inline-block;
    padding: 10px 20px;
    background-color: #11151C;
    color: white;
    border-radius: 10px;
    border: 2px solid transparent;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
  }
  
  .go-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1); 
    transform: scale(0);
    transition: transform 0.3s ease-in-out;
    border-radius: inherit;
  }
  
  .go-button:hover {
    border-color: white;
    background-color: black ; 
    color: white;
  }
  
  .go-button:hover::before {
    transform: scale(1);
  }
  
  .go-button {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  }
  
  /*-----FOOTER-----*/

  footer {
    background: linear-gradient(to top, #212D40, #364156);
    color: #000000;
  }
  
  .footer-content {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    justify-content: center;
    text-align: center;
  }
  
  .footer-content img {
    height: 30px;
    margin-left: 20px;
    transition: transform 0.3s ease;
  }
  
  .footer-content a:hover img {
    transform: scale(1.1);
  }

  footer p {
    font-size: 16px;
    font-style: italic;
  }

  @media screen and (max-width: 800px) {
    footer p {
      font-size: 14px; 
    }
  }